home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #11 / CD 11 (Black) - 2001.iso / FAVORG / FAVO_SRC.ZIP / FavOrg.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-10-25  |  1.4 KB  |  54 lines

  1. // FAVORG Version 1.1
  2. // Copyright (c) 2000 Ziff Davis Media, Inc.
  3. // All rights reserved.
  4. // First Published in PC Magazine, US Edition, November 7, 2000.
  5. // Programmer: Patrick Philippot
  6.  
  7. #if !defined(AFX_FAVORG_H__26438FCA_6785_11D4_908E_00A0249EABF4__INCLUDED_)
  8. #define AFX_FAVORG_H__26438FCA_6785_11D4_908E_00A0249EABF4__INCLUDED_
  9.  
  10. #if _MSC_VER > 1000
  11. #pragma once
  12. #endif // _MSC_VER > 1000
  13.  
  14. #ifndef __AFXWIN_H__
  15.     #error include 'stdafx.h' before including this file for PCH
  16. #endif
  17.  
  18. #include "resource.h"       // main symbols
  19.  
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CFavOrgApp:
  22. // See FavOrg.cpp for the implementation of this class
  23. //
  24.  
  25. class CFavOrgApp : public CWinApp
  26. {
  27. public:
  28.     CFavOrgApp();
  29.  
  30.     CStringEx m_sIniFile;
  31.  
  32. // Overrides
  33.     // ClassWizard generated virtual function overrides
  34.     //{{AFX_VIRTUAL(CFavOrgApp)
  35.     public:
  36.     virtual BOOL InitInstance();
  37.     //}}AFX_VIRTUAL
  38.  
  39. // Implementation
  40.     //{{AFX_MSG(CFavOrgApp)
  41.     afx_msg void OnAppAbout();
  42.     afx_msg void OnFavorgHelp();
  43.     //}}AFX_MSG
  44.     DECLARE_MESSAGE_MAP()
  45. };
  46.  
  47.  
  48. /////////////////////////////////////////////////////////////////////////////
  49.  
  50. //{{AFX_INSERT_LOCATION}}
  51. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  52.  
  53. #endif // !defined(AFX_FAVORG_H__26438FCA_6785_11D4_908E_00A0249EABF4__INCLUDED_)
  54.